home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-23 | 1.1 KB | 58 lines | [TEXT/PJMM] |
- { This file contains the global variables for Siege Watch }
- unit Globals;
- interface
- uses
- Speech;
- const
- { ranges used by the sliders used in the setup dialog }
- MIN_PITCH = 35.0;
- MAX_PITCH = 65.0;
-
- MIN_WPM = 100.0;
- MAX_WPM = 200.0;
-
- MIN_VOL = 0.0;
- MAX_VOL = 1.0;
-
- MIN_MOD = 0.0;
- MAX_MOD = 100;
-
- BASE_RES_ID = 400;
-
- { type definition used by the preference file }
- type
- PrefRecord = record
- version: LONGINT;
- location: Point;
- zoomed: Boolean;
- chimed: Boolean;
- sayDays: Boolean;
- sayHours: Boolean;
- sayBites: Boolean;
- pitch: Fixed;
- wpm: Fixed;
- voice: VoiceSpec;
- volume: Fixed;
- modulation: Fixed;
- biteFreq: integer;
- useSysVoice: Boolean;
- useDaemon: Boolean;
- keepVoice: Boolean;
- unused2: integer;
- unused3: LONGINT;
- end;
- var
- gSpeechAvailable: Boolean;
- gColorAvailable: Boolean;
- gWindow: WindowPtr;
- { global preference variables }
- gPreferences: PrefRecord;
- gFPUAvailable: Boolean;
- { have I proclaimed inaugeration day? }
- gChimed: Boolean;
- gDone: Boolean;
- { most recent depth used in drawing offscreen }
- gDepth: integer;
- gZoomCtl: ControlHandle;
- implementation
- end.